home *** CD-ROM | disk | FTP | other *** search
/ CD-ROM Now 11 / CD-ROM Now MegaDisc 11 (1995-02).iso / discs / internet / unix2.txt < prev    next >
Internet Message Format  |  1994-10-26  |  38KB

  1. Path: bloom-beacon.mit.edu!senator-bedfellow.mit.edu!faqserv
  2. From: tmatimar@isgtec.com (Ted Timar)
  3. Newsgroups: comp.unix.questions,comp.unix.shell,comp.answers,news.answers
  4. Subject: Unix - Frequently Asked Questions (2/7) [Frequent posting]
  5. Supersedes: <unix-faq/faq/part2_779635319@rtfm.mit.edu>
  6. Followup-To: comp.unix.questions
  7. Date: 23 Sep 1994 19:34:16 GMT
  8. Organization: ISG Technologies, Inc
  9. Lines: 1006
  10. Approved: news-answers-request@MIT.Edu
  11. Distribution: world
  12. Expires: 21 Oct 1994 19:25:02 GMT
  13. Message-ID: <unix-faq/faq/part2_780348302@rtfm.mit.edu>
  14. References: <unix-faq/faq/contents_780348302@rtfm.mit.edu>
  15. NNTP-Posting-Host: bloom-picayune.mit.edu
  16. X-Last-Updated: 1994/09/08
  17. Originator: faqserv@bloom-picayune.MIT.EDU
  18. Xref: bloom-beacon.mit.edu comp.unix.questions:32517 comp.unix.shell:13048 comp.answers:7424 news.answers:26208
  19.  
  20. Archive-name: unix-faq/faq/part2
  21. Version: $Id: part2,v 2.5 1994/04/28 19:25:03 tmatimar Exp tmatimar $
  22.  
  23. These seven articles contain the answers to some Frequently Asked
  24. Questions often seen in comp.unix.questions and comp.unix.shell.
  25. Please don't ask these questions again, they've been answered plenty
  26. of times already - and please don't flame someone just because they may
  27. not have read this particular posting.  Thank you.
  28.  
  29. This collection of documents is Copyright (c) 1994, Ted Timar, except
  30. Part 6, which is Copyright (c) 1994, Pierre Lewis and Ted Timar.
  31. All rights reserved.  Permission to distribute the collection is
  32. hereby granted providing that distribution is electronic, no money
  33. is involved, reasonable attempts are made to use the latest version
  34. and all credits and this copyright notice are maintained.
  35. Other requests for distribution will be considered.  All reasonable
  36. requests will be granted.
  37.  
  38. All information here has been contributed with good intentions, but
  39. none of it is guaranteed either by the contributors or myself to be
  40. accurate.  The users of this information take all responsibility for
  41. any damage that may occur.
  42.  
  43. Many FAQs, including this one, are available on the archive site
  44. rtfm.mit.edu in the directory pub/usenet/news.answers.
  45. The name under which a FAQ is archived appears in the "Archive-Name:"
  46. line at the top of the article.  This FAQ is archived as
  47. "unix-faq/faq/part[1-7]".
  48.  
  49. These articles are divided approximately as follows:
  50.  
  51.       1.*) General questions.
  52.       2.*) Relatively basic questions, likely to be asked by beginners.
  53.       3.*) Intermediate questions.
  54.       4.*) Advanced questions, likely to be asked by people who thought
  55.              they already knew all of the answers.
  56.       5.*) Questions pertaining to the various shells, and the differences.
  57.       6.*) An overview of Unix variants.
  58.       7.*) An comparison of configuration management systems (RCS, SCCS).
  59.  
  60. This article includes answers to:
  61.  
  62.       2.1)  How do I remove a file whose name begins with a "-" ?
  63.       2.2)  How do I remove a file with funny characters in the filename ?
  64.       2.3)  How do I get a recursive directory listing?
  65.       2.4)  How do I get the current directory into my prompt?
  66.       2.5)  How do I read characters from the terminal in a shell script?
  67.       2.6)  How do I rename "*.foo" to "*.bar", or change file names
  68.               to lowercase?
  69.       2.7)  Why do I get [some strange error message] when I
  70.               "rsh host command" ?
  71.       2.8)  How do I {set an environment variable, change directory} inside a
  72.               program or shell script and have that change affect my
  73.               current shell?
  74.       2.9)  How do I redirect stdout and stderr separately in csh?
  75.       2.10) How do I tell inside .cshrc if I'm a login shell?
  76.       2.11) How do I construct a shell glob-pattern that matches all files
  77.             except "." and ".." ?
  78.       2.12) How do I find the last argument in a Bourne shell script?
  79.       2.13) What's wrong with having '.' in your $PATH ?
  80.       2.14) How do I ring the terminal bell during a shell script?
  81.       2.15) Why can't I use "talk" to talk with my friend on machine X?
  82.       2.16) Why does calendar produce the wrong output?
  83.  
  84. If you're looking for the answer to, say, question 2.5, and want to skip
  85. everything else, you can search ahead for the regular expression "^2.5)".
  86.  
  87. While these are all legitimate questions, they seem to crop up in
  88. comp.unix.questions or comp.unix.shell on an annual basis, usually
  89. followed by plenty of replies (only some of which are correct) and then
  90. a period of griping about how the same questions keep coming up.  You
  91. may also like to read the monthly article "Answers to Frequently Asked
  92. Questions" in the newsgroup "news.announce.newusers", which will tell
  93. you what "UNIX" stands for.
  94.  
  95. With the variety of Unix systems in the world, it's hard to guarantee
  96. that these answers will work everywhere.  Read your local manual pages
  97. before trying anything suggested here.  If you have suggestions or
  98. corrections for any of these answers, please send them to to
  99. tmatimar@isgtec.com.
  100.  
  101. ----------------------------------------------------------------------
  102.  
  103. Subject: How do I remove a file whose name begins with a "-" ?
  104. Date: Thu Mar 18 17:16:55 EST 1993
  105.  
  106. 2.1)  How do I remove a file whose name begins with a "-" ?
  107.  
  108.       Figure out some way to name the file so that it doesn't begin
  109.       with a dash.  The simplest answer is to use
  110.  
  111.             rm ./-filename
  112.  
  113.       (assuming "-filename" is in the current directory, of course.)
  114.       This method of avoiding the interpretation of the "-" works with
  115.       other commands too.
  116.  
  117.       Many commands, particularly those that have been written to use
  118.       the "getopt(3)" argument parsing routine, accept a "--" argument
  119.       which means "this is the last option, anything after this is not
  120.       an option", so your version of rm might handle "rm -- -filename".
  121.       Some versions of rm that don't use getopt() treat a single "-"
  122.       in the same way, so you can also try "rm - -filename".
  123.  
  124. ------------------------------
  125.  
  126. Subject: How do I remove a file with funny characters in the filename ?
  127. Date: Thu Mar 18 17:16:55 EST 1993
  128.  
  129. 2.2)  How do I remove a file with funny characters in the filename ?
  130.  
  131.       If the 'funny character' is a '/', skip to the last part of this
  132.       answer.  If the funny character is something else, such as a ' '
  133.       or control character or character with the 8th bit set, keep reading.
  134.  
  135.       The classic answers are
  136.  
  137.         rm -i some*pattern*that*matches*only*the*file*you*want
  138.  
  139.         which asks you whether you want to remove each file matching
  140.         the indicated pattern;  depending on your shell, this may not
  141.         work if the filename has a character with the 8th bit set (the
  142.         shell may strip that off);
  143.  
  144.       and
  145.  
  146.         rm -ri .
  147.  
  148.         which asks you whether to remove each file in the directory.
  149.         Answer "y" to the problem file and "n" to everything else.
  150.         Unfortunately this doesn't work with many versions of rm.  Also
  151.         unfortunately, this will walk through every subdirectory of ".",
  152.         so you might want to "chmod a-x" those directories temporarily
  153.         to make them unsearchable.
  154.  
  155.         Always take a deep breath and think about what you're doing and
  156.         double check what you typed when you use rm's "-r" flag or a
  157.         wildcard on the command line;
  158.  
  159.       and
  160.  
  161.         find . -type f ... -ok rm '{}' \;
  162.  
  163.       where "..." is a group of predicates that uniquely identify the
  164.       file.  One possibility is to figure out the inode number of the
  165.       problem file (use "ls -i .") and then use
  166.  
  167.         find . -inum 12345 -ok rm '{}' \;
  168.  
  169.       or
  170.         find . -inum 12345 -ok mv '{}' new-file-name \;
  171.         
  172.       "-ok" is a safety check - it will prompt you for confirmation of
  173.       the command it's about to execute.  You can use "-exec" instead
  174.       to avoid the prompting, if you want to live dangerously, or if
  175.       you suspect that the filename may contain a funny character
  176.       sequence that will mess up your screen when printed.
  177.  
  178.       What if the filename has a '/' in it?
  179.  
  180.       These files really are special cases, and can only be created by
  181.       buggy kernel code (typically by implementations of NFS that don't
  182.       filter out illegal characters in file names from remote
  183.       machines.)  The first thing to do is to try to understand exactly
  184.       why this problem is so strange.
  185.  
  186.       Recall that Unix directories are simply pairs of filenames and
  187.       inode numbers.  A directory essentially contains information
  188.       like this:
  189.  
  190.         filename  inode
  191.  
  192.         file1     12345
  193.         file2.c   12349
  194.         file3     12347
  195.  
  196.       Theoretically, '/' and '\0' are the only two characters that
  197.       cannot appear in a filename - '/' because it's used to separate
  198.       directories and files, and '\0' because it terminates a filename.
  199.  
  200.       Unfortunately some implementations of NFS will blithely create
  201.       filenames with embedded slashes in response to requests from
  202.       remote machines.  For instance, this could happen when someone on
  203.       a Mac or other non-Unix machine decides to create a remote NFS
  204.       file on your Unix machine with the date in the filename.  Your
  205.       Unix directory then has this in it:
  206.  
  207.         filename  inode
  208.  
  209.         91/02/07  12357
  210.  
  211.       No amount of messing around with 'find' or 'rm' as described
  212.       above will delete this file, since those utilities and all other
  213.       Unix programs, are forced to interpret the '/' in the normal way.
  214.  
  215.       Any ordinary program will eventually try to do
  216.       unlink("91/02/07"), which as far as the kernel is concerned means
  217.       "unlink the file 07 in the subdirectory 02 of directory 91", but
  218.       that's not what we have - we have a *FILE* named "91/02/07" in
  219.       the current directory.  This is a subtle but crucial distinction.
  220.  
  221.       What can you do in this case?  The first thing to try is to
  222.       return to the Mac that created this crummy entry, and see if you
  223.       can convince it and your local NFS daemon to rename the file to
  224.       something without slashes.
  225.  
  226.       If that doesn't work or isn't possible, you'll need help from
  227.       your system manager, who will have to try the one of the
  228.       following.  Use "ls -i" to find the inode number of this bogus
  229.       file, then unmount the file system and use "clri" to clear the
  230.       inode, and "fsck" the file system with your fingers crossed.
  231.       This destroys the information in the file.  If you want to keep
  232.       it, you can try:
  233.  
  234.         create a new directory in the same parent directory as the one
  235.         containing the bad file name;
  236.  
  237.         move everything you can (i.e. everything but the file with the
  238.         bad name) from the old directory to the new one;
  239.  
  240.         do "ls -id" on the directory containing the file with the bad
  241.         name to get its inumber;
  242.  
  243.         umount the file system;
  244.  
  245.         "clri" the directory containing the file with the bad name;
  246.  
  247.         "fsck" the file system.
  248.  
  249.       Then, to find the file,
  250.  
  251.         remount the file system;
  252.  
  253.         rename the directory you created to have the name of the old
  254.         directory (since the old directory should have been blown away
  255.         by "fsck")
  256.  
  257.         move the file out of "lost+found" into the directory with a
  258.         better name.
  259.  
  260.       Alternatively, you can patch the directory the hard way by
  261.       crawling around in the raw file system.  Use "fsdb", if you
  262.       have it.
  263.  
  264. ------------------------------
  265.  
  266. Subject: How do I get a recursive directory listing?
  267. Date: Thu Mar 18 17:16:55 EST 1993
  268.  
  269. 2.3)  How do I get a recursive directory listing?
  270.  
  271.       One of the following may do what you want:
  272.  
  273.         ls -R                   (not all versions of "ls" have -R)
  274.         find . -print           (should work everywhere)
  275.         du -a .                 (shows you both the name and size)
  276.  
  277.       If you're looking for a wildcard pattern that will match all ".c"
  278.       files in this directory and below, you won't find one, but you
  279.       can use
  280.  
  281.         % some-command `find . -name '*.c' -print`
  282.  
  283.       "find" is a powerful program.  Learn about it.
  284.  
  285. ------------------------------
  286.  
  287. Subject: How do I get the current directory into my prompt?
  288. Date: Thu Mar 18 17:16:55 EST 1993
  289.  
  290. 2.4)  How do I get the current directory into my prompt?
  291.  
  292.       It depends which shell you are using.  It's easy with some
  293.       shells, hard or impossible with others.
  294.  
  295.       C Shell (csh):
  296.         Put this in your .cshrc - customize the prompt variable the
  297.         way you want.
  298.  
  299.             alias setprompt 'set prompt="${cwd}% "'
  300.             setprompt           # to set the initial prompt
  301.             alias cd 'chdir \!* && setprompt'
  302.         
  303.         If you use pushd and popd, you'll also need
  304.  
  305.             alias pushd 'pushd \!* && setprompt'
  306.             alias popd  'popd  \!* && setprompt'
  307.  
  308.         Some C shells don't keep a $cwd variable - you can use
  309.         `pwd` instead.
  310.  
  311.         If you just want the last component of the current directory
  312.         in your prompt ("mail% " instead of "/usr/spool/mail% ")
  313.         you can use
  314.  
  315.             alias setprompt 'set prompt="$cwd:t% "'
  316.         
  317.         Some older csh's get the meaning of && and || reversed.
  318.         Try doing:
  319.  
  320.             false && echo bug
  321.  
  322.         If it prints "bug", you need to switch && and || (and get
  323.         a better version of csh.)
  324.  
  325.       Bourne Shell (sh):
  326.  
  327.         If you have a newer version of the Bourne Shell (SVR2 or newer)
  328.         you can use a shell function to make your own command, "xcd" say:
  329.  
  330.             xcd() { cd $* ; PS1="`pwd` $ "; }
  331.  
  332.         If you have an older Bourne shell, it's complicated but not
  333.         impossible.  Here's one way.  Add this to your .profile file:
  334.  
  335.                 LOGIN_SHELL=$$ export LOGIN_SHELL
  336.                 CMDFILE=/tmp/cd.$$ export CMDFILE
  337.                 # 16 is SIGURG, pick a signal that's not likely to be used
  338.                 PROMPTSIG=16 export PROMPTSIG
  339.                 trap '. $CMDFILE' $PROMPTSIG
  340.  
  341.         and then put this executable script (without the indentation!),
  342.         let's call it "xcd", somewhere in your PATH
  343.  
  344.                 : xcd directory - change directory and set prompt
  345.                 : by signalling the login shell to read a command file
  346.                 cat >${CMDFILE?"not set"} <<EOF
  347.                 cd $1
  348.                 PS1="\`pwd\`$ "
  349.                 EOF
  350.                 kill -${PROMPTSIG?"not set"} ${LOGIN_SHELL?"not set"}
  351.  
  352.         Now change directories with "xcd /some/dir".
  353.  
  354.       Korn Shell (ksh):
  355.  
  356.         Put this in your .profile file:
  357.                 PS1='$PWD $ '
  358.         
  359.         If you just want the last component of the directory, use
  360.                 PS1='${PWD##*/} $ '
  361.  
  362.       T C shell (tcsh)
  363.  
  364.         Tcsh is a popular enhanced version of csh with some extra
  365.         builtin variables (and many other features):
  366.  
  367.             %~          the current directory, using ~ for $HOME
  368.             %/          the full pathname of the current directory
  369.             %c or %.    the trailing component of the current directory
  370.  
  371.         so you can do
  372.  
  373.             set prompt='%~ '
  374.  
  375.       BASH (FSF's "Bourne Again SHell")
  376.         
  377.         \w in $PS1 gives the full pathname of the current directory,
  378.         with ~ expansion for $HOME;  \W gives the basename of
  379.         the current directory.  So, in addition to the above sh and
  380.         ksh solutions, you could use
  381.  
  382.             PS1='\w $ ' 
  383.         or
  384.             PS1='\W $ '
  385.  
  386. ------------------------------
  387.  
  388. Subject: How do I read characters from the terminal in a shell script?
  389. Date: Thu Mar 18 17:16:55 EST 1993
  390.  
  391. 2.5)  How do I read characters from the terminal in a shell script?
  392.  
  393.       In sh, use read.  It is most common to use a loop like
  394.  
  395.             while read line
  396.             do
  397.                     ...
  398.             done
  399.  
  400.       In csh, use $< like this:
  401.         
  402.             while ( 1 )
  403.                 set line = "$<"
  404.                 if ( "$line" == "" ) break
  405.                 ...
  406.             end
  407.  
  408.       Unfortunately csh has no way of distinguishing between a blank
  409.       line and an end-of-file.
  410.  
  411.       If you're using sh and want to read a *single* character from the
  412.       terminal, you can try something like
  413.  
  414.             echo -n "Enter a character: "
  415.             stty cbreak         # or  stty raw
  416.             readchar=`dd if=/dev/tty bs=1 count=1 2>/dev/null`
  417.             stty -cbreak
  418.  
  419.             echo "Thank you for typing a $readchar ."
  420.  
  421. ------------------------------
  422.  
  423. Subject: How do I rename "*.foo" to "*.bar", or change file names to lowercase?
  424. Date: Thu Mar 18 17:16:55 EST 1993
  425.  
  426. 2.6)  How do I rename "*.foo" to "*.bar", or change file names to lowercase?
  427.         
  428.       Why doesn't "mv *.foo *.bar" work?  Think about how the shell
  429.       expands wildcards.   "*.foo" and "*.bar" are expanded before the
  430.       mv command ever sees the arguments.  Depending on your shell,
  431.       this can fail in a couple of ways.  CSH prints "No match."
  432.       because it can't match "*.bar".  SH executes "mv a.foo b.foo
  433.       c.foo *.bar", which will only succeed if you happen to have a
  434.       single directory named "*.bar", which is very unlikely and almost
  435.       certainly not what you had in mind.
  436.  
  437.       Depending on your shell, you can do it with a loop to "mv" each
  438.       file individually.  If your system has "basename", you can use:
  439.  
  440.       C Shell:
  441.         foreach f ( *.foo )
  442.             set base=`basename $f .foo`
  443.             mv $f $base.bar
  444.         end
  445.  
  446.       Bourne Shell:
  447.         for f in *.foo; do
  448.             base=`basename $f .foo`
  449.             mv $f $base.bar
  450.         done
  451.  
  452.       Some shells have their own variable substitution features, so
  453.       instead of using "basename", you can use simpler loops like:
  454.  
  455.       C Shell:
  456.  
  457.         foreach f ( *.foo )
  458.             mv $f $f:r.bar
  459.         end
  460.  
  461.       Korn Shell:
  462.  
  463.         for f in *.foo; do
  464.             mv $f ${f%foo}bar
  465.         done
  466.  
  467.       If you don't have "basename" or want to do something like
  468.       renaming foo.* to bar.*, you can use something like "sed" to
  469.       strip apart the original file name in other ways, but the general
  470.       looping idea is the same.  You can also convert file names into
  471.       "mv" commands with 'sed', and hand the commands off to "sh" for
  472.       execution.  Try
  473.  
  474.         ls -d *.foo | sed -e 's/.*/mv & &/' -e 's/foo$/bar/' | sh
  475.  
  476.       A program by Vladimir Lanin called "mmv" that does this job
  477.       nicely was posted to comp.sources.unix (Volume 21, issues 87 and
  478.       88) in April 1990.  It lets you use
  479.  
  480.         mmv '*.foo' '=1.bar'
  481.  
  482.       Shell loops like the above can also be used to translate file
  483.       names from upper to lower case or vice versa.  You could use
  484.       something like this to rename uppercase files to lowercase:
  485.  
  486.         C Shell:
  487.             foreach f ( * )
  488.                 mv $f `echo $f | tr '[A-Z]' '[a-z]'`
  489.             end
  490.         Bourne Shell:
  491.             for f in *; do
  492.                 mv $f `echo $f | tr '[A-Z]' '[a-z]'`
  493.             done
  494.         Korn Shell:
  495.             typeset -l l
  496.             for f in *; do
  497.                 l="$f"
  498.                 mv $f $l
  499.             done
  500.  
  501.       If you wanted to be really thorough and handle files with `funny'
  502.       names (embedded blanks or whatever) you'd need to use
  503.  
  504.         Bourne Shell:
  505.  
  506.             for f in *; do
  507.               g=`expr "xxx$f" : 'xxx\(.*\)' | tr '[A-Z]' '[a-z]'`
  508.               mv "$f" "$g"
  509.             done
  510.  
  511.       The `expr' command will always print the filename, even if it
  512.       equals `-n' or if it contains a System V escape sequence like `\c'.
  513.  
  514.       Some versions of "tr" require the [ and ], some don't.  It
  515.       happens to be harmless to include them in this particular
  516.       example; versions of tr that don't want the [] will conveniently
  517.       think they are supposed to translate '[' to '[' and ']' to ']'.
  518.  
  519.       If you have the "perl" language installed, you may find this
  520.       rename script by Larry Wall very useful.  It can be used to
  521.       accomplish a wide variety of filename changes.
  522.  
  523.         #!/usr/bin/perl
  524.         #
  525.         # rename script examples from lwall:
  526.         #       rename 's/\.orig$//' *.orig
  527.         #       rename 'y/A-Z/a-z/ unless /^Make/' *
  528.         #       rename '$_ .= ".bad"' *.f
  529.         #       rename 'print "$_: "; s/foo/bar/ if <stdin> =~ /^y/i' *
  530.  
  531.         $op = shift;
  532.         for (@ARGV) {
  533.             $was = $_;
  534.             eval $op;
  535.             die $@ if $@;
  536.             rename($was,$_) unless $was eq $_;
  537.         }
  538.  
  539. ------------------------------
  540.  
  541. Subject: Why do I get [some strange error message] when I "rsh host command" ?
  542. Date: Thu Mar 18 17:16:55 EST 1993
  543.  
  544. 2.7)  Why do I get [some strange error message] when I "rsh host command" ?
  545.  
  546.       (We're talking about the remote shell program "rsh" or sometimes
  547.       "remsh" or "remote"; on some machines, there is a restricted shell
  548.       called "rsh", which is a different thing.)
  549.  
  550.       If your remote account uses the C shell, the remote host will
  551.       fire up a C shell to execute 'command' for you, and that shell
  552.       will read your remote .cshrc file.  Perhaps your .cshrc contains
  553.       a "stty", "biff" or some other command that isn't appropriate for
  554.       a non-interactive shell.  The unexpected output or error message
  555.       from these commands can screw up your rsh in odd ways.
  556.  
  557.       Here's an example.  Suppose you have
  558.  
  559.         stty erase ^H
  560.         biff y
  561.  
  562.       in your .cshrc file.  You'll get some odd messages like this.
  563.  
  564.         % rsh some-machine date
  565.         stty: : Can't assign requested address
  566.         Where are you?
  567.         Tue Oct  1 09:24:45 EST 1991
  568.  
  569.       You might also get similar errors when running certain "at" or
  570.       "cron" jobs that also read your .cshrc file.
  571.  
  572.       Fortunately, the fix is simple.  There are, quite possibly, a
  573.       whole *bunch* of operations in your ".cshrc" (e.g., "set
  574.       history=N") that are simply not worth doing except in interactive
  575.       shells.  What you do is surround them in your ".cshrc" with:
  576.  
  577.             if ( $?prompt ) then
  578.                     operations....
  579.             endif
  580.  
  581.       and, since in a non-interactive shell "prompt" won't be set, the
  582.       operations in question will only be done in interactive shells.
  583.  
  584.       You may also wish to move some commands to your .login file; if
  585.       those commands only need to be done when a login session starts
  586.       up (checking for new mail, unread news and so on) it's better to
  587.       have them in the .login file.
  588.  
  589. ------------------------------
  590.  
  591. Subject: How do I ... and have that change affect my current shell?
  592. Date: Thu Mar 18 17:16:55 EST 1993
  593.  
  594. 2.8)  How do I {set an environment variable, change directory} inside
  595.       a program or shell script and have that change affect my
  596.       current shell?
  597.  
  598.       In general, you can't, at least not without making special
  599.       arrangements.  When a child process is created, it inherits a
  600.       copy of its parent's variables (and current directory).  The
  601.       child can change these values all it wants but the changes won't
  602.       affect the parent shell, since the child is changing a copy of
  603.       the original data.
  604.  
  605.       Some special arrangements are possible.  Your child process could
  606.       write out the changed variables, if the parent was prepared to
  607.       read the output and interpret it as commands to set its own
  608.       variables.
  609.  
  610.       Also, shells can arrange to run other shell scripts in the
  611.       context of the current shell, rather than in a child process, so
  612.       that changes will affect the original shell.
  613.  
  614.       For instance, if you have a C shell script named "myscript":
  615.  
  616.         cd /very/long/path
  617.         setenv PATH /something:/something-else
  618.  
  619.       or the equivalent Bourne or Korn shell script
  620.  
  621.         cd /very/long/path
  622.         PATH=/something:/something-else export PATH
  623.  
  624.       and try to run "myscript" from your shell, your shell will fork
  625.       and run the shell script in a subprocess.  The subprocess is also
  626.       running the shell; when it sees the "cd" command it changes *its*
  627.       current directory, and when it sees the "setenv" command it
  628.       changes *its* environment, but neither has any effect on the
  629.       current directory of the shell at which you're typing (your login
  630.       shell, let's say).
  631.  
  632.       In order to get your login shell to execute the script (without
  633.       forking) you have to use the "." command (for the Bourne or Korn
  634.       shells) or the "source" command (for the C shell).  I.e. you type
  635.  
  636.         . myscript
  637.  
  638.       to the Bourne or Korn shells, or
  639.  
  640.         source myscript
  641.  
  642.       to the C shell.
  643.  
  644.       If all you are trying to do is change directory or set an
  645.       environment variable, it will probably be simpler to use a C
  646.       shell alias or Bourne/Korn shell function.  See the "how do I get
  647.       the current directory into my prompt" section of this article for
  648.       some examples.
  649.  
  650.       A much more detailed answer prepared by
  651.       xtm@telelogic.se (Thomas Michanek) can be found at
  652.       ftp.wg.omron.co.jp in /pub/unix-faq/docs/script-vs-env.
  653.  
  654. ------------------------------
  655.  
  656. Subject: How do I redirect stdout and stderr separately in csh?
  657. From: msb@sq.com (Mark Brader)
  658. Date: Mon, 26 Oct 1992 20:15:00 -0500
  659.  
  660. 2.9)  How do I redirect stdout and stderr separately in csh?
  661.  
  662.       In csh, you can redirect stdout with ">", or stdout and stderr
  663.       together with ">&" but there is no direct way to redirect stderr
  664.       only.  The best you can do is
  665.  
  666.         ( command >stdout_file ) >&stderr_file
  667.  
  668.       which runs "command" in a subshell;  stdout is redirected inside
  669.       the subshell to stdout_file, and both stdout and stderr from the
  670.       subshell are redirected to stderr_file, but by this point stdout
  671.       has already been redirected so only stderr actually winds up in
  672.       stderr_file.
  673.  
  674.       If what you want is to avoid redirecting stdout at all, let sh
  675.       do it for you.
  676.  
  677.         sh -c 'command 2>stderr_file'
  678.  
  679. ------------------------------
  680.  
  681. Subject: How do I tell inside .cshrc if I'm a login shell?
  682. Date: Thu Mar 18 17:16:55 EST 1993
  683.  
  684. 2.10) How do I tell inside .cshrc if I'm a login shell?
  685.  
  686.       When people ask this, they usually mean either
  687.  
  688.         How can I tell if it's an interactive shell?  or
  689.         How can I tell if it's a top-level shell?
  690.  
  691.       You could perhaps determine if your shell truly is a login shell
  692.       (i.e. is going to source ".login" after it is done with ".cshrc")
  693.       by fooling around with "ps" and "$$".  Login shells generally
  694.       have names that begin with a '-'.  If you're really interested in
  695.       the other two questions, here's one way you can organize your
  696.       .cshrc to find out.
  697.  
  698.         if (! $?CSHLEVEL) then
  699.                 #
  700.                 # This is a "top-level" shell,
  701.                 # perhaps a login shell, perhaps a shell started up by
  702.                 # 'rsh machine some-command'
  703.                 # This is where we should set PATH and anything else we
  704.                 # want to apply to every one of our shells.
  705.                 #
  706.                 setenv      CSHLEVEL        0
  707.                 set home = ~username        # just to be sure
  708.                 source ~/.env               # environment stuff we always want
  709.         else
  710.                 #
  711.                 # This shell is a child of one of our other shells so
  712.                 # we don't need to set all the environment variables again.
  713.                 #
  714.                 set tmp = $CSHLEVEL
  715.                 @ tmp++
  716.                 setenv      CSHLEVEL        $tmp
  717.         endif
  718.  
  719.         # Exit from .cshrc if not interactive, e.g. under rsh
  720.         if (! $?prompt) exit
  721.  
  722.         # Here we could set the prompt or aliases that would be useful
  723.         # for interactive shells only.
  724.  
  725.         source ~/.aliases
  726.  
  727. ------------------------------
  728.  
  729. Subject: How do I construct a ... matches all files except "." and ".." ?
  730. Date: Thu Mar 18 17:16:55 EST 1993
  731.  
  732. 2.11) How do I construct a shell glob-pattern that matches all files
  733.       except "." and ".." ?
  734.  
  735.       You'd think this would be easy.
  736.  
  737.       *        Matches all files that don't begin with a ".";
  738.  
  739.       .*             Matches all files that do begin with a ".", but
  740.              this includes the special entries "." and "..",
  741.              which often you don't want;
  742.  
  743.       .[!.]*   (Newer shells only; some shells use a "^" instead of
  744.              the "!"; POSIX shells must accept the "!", but may
  745.              accept a "^" as well; all portable applications shall
  746.              not use an unquoted "^" immediately following the "[")
  747.  
  748.              Matches all files that begin with a "." and are
  749.              followed by a non-"."; unfortunately this will miss
  750.              "..foo";
  751.  
  752.       .??*     Matches files that begin with a "." and which are
  753.              at least 3 characters long.  This neatly avoids
  754.              "." and "..", but also misses ".a" .
  755.  
  756.       So to match all files except "." and ".." safely you have to use
  757.       3 patterns (if you don't have filenames like ".a" you can leave
  758.       out the first):
  759.  
  760.         .[!.]* .??* *
  761.  
  762.       Alternatively you could employ an external program or two and use
  763.       backquote substitution.  This is pretty good:
  764.  
  765.       `ls -a | sed -e '/^\.$/d' -e '/^\.\.$/d'`
  766.  
  767.         (or `ls -A` in some Unix versions)
  768.  
  769.       but even it will mess up on files with newlines, IFS characters
  770.       or wildcards in their names.
  771.  
  772. ------------------------------
  773.  
  774. Subject: How do I find the last argument in a Bourne shell script?
  775. Date: Thu Mar 18 17:16:55 EST 1993
  776.  
  777. 2.12) How do I find the last argument in a Bourne shell script?
  778.  
  779.       Answer by:
  780.         Martin Weitzel <@mikros.systemware.de:martin@mwtech.uucp>
  781.         Maarten Litmaath <maart@nat.vu.nl>
  782.  
  783.       If you are sure the number of arguments is at most 9, you can use:
  784.  
  785.         eval last=\${$#}
  786.  
  787.       In POSIX-compatible shells it works for ANY number of arguments.
  788.       The following works always too:
  789.  
  790.         for last
  791.         do
  792.                 :
  793.         done
  794.  
  795.       This can be generalized as follows:
  796.  
  797.         for i
  798.         do
  799.                 third_last=$second_last
  800.                 second_last=$last
  801.                 last=$i
  802.         done
  803.  
  804.       Now suppose you want to REMOVE the last argument from the list,
  805.       or REVERSE the argument list, or ACCESS the N-th argument
  806.       directly, whatever N may be.  Here is a basis of how to do it,
  807.       using only built-in shell constructs, without creating subprocesses:
  808.  
  809.         t0= u0= rest='1 2 3 4 5 6 7 8 9' argv=
  810.  
  811.         for h in '' $rest
  812.         do
  813.                 for t in "$t0" $rest
  814.                 do
  815.                         for u in $u0 $rest
  816.                         do
  817.                                 case $# in
  818.                                 0)
  819.                                         break 3
  820.                                 esac
  821.                                 eval argv$h$t$u=\$1
  822.                                 argv="$argv \"\$argv$h$t$u\""   # (1)
  823.                                 shift
  824.                         done
  825.                         u0=0
  826.                 done
  827.                 t0=0
  828.         done
  829.  
  830.         # now restore the arguments
  831.         eval set x "$argv"                                      # (2)
  832.         shift
  833.  
  834.       This example works for the first 999 arguments.  Enough?
  835.       Take a good look at the lines marked (1) and (2) and convince
  836.       yourself that the original arguments are restored indeed, no
  837.       matter what funny characters they contain!
  838.  
  839.       To find the N-th argument now you can use this:
  840.  
  841.         eval argN=\$argv$N
  842.  
  843.       To reverse the arguments the line marked (1) must be changed to:
  844.  
  845.         argv="\"\$argv$h$t$u\" $argv"
  846.  
  847.       How to remove the last argument is left as an exercise.
  848.  
  849.       If you allow subprocesses as well, possibly executing nonbuilt-in
  850.       commands, the `argvN' variables can be set up more easily:
  851.  
  852.         N=1
  853.  
  854.         for i
  855.         do
  856.                 eval argv$N=\$i
  857.                 N=`expr $N + 1`
  858.         done
  859.  
  860.       To reverse the arguments there is still a simpler method, that
  861.       even does not create subprocesses.  This approach can also be
  862.       taken if you want to delete e.g. the last argument, but in that
  863.       case you cannot refer directly to the N-th argument any more,
  864.       because the `argvN' variables are set up in reverse order:
  865.  
  866.         argv=
  867.  
  868.         for i
  869.         do
  870.                 eval argv$#=\$i
  871.                 argv="\"\$argv$#\" $argv"
  872.                 shift
  873.         done
  874.  
  875.         eval set x "$argv"
  876.         shift
  877.  
  878. ------------------------------
  879.  
  880. Subject: What's wrong with having '.' in your $PATH ?
  881. Date: Thu Mar 18 17:16:55 EST 1993
  882.  
  883. 2.13) What's wrong with having '.' in your $PATH ?
  884.  
  885.       A bit of background: the PATH environment variable is a list of
  886.       directories separated by colons.  When you type a command name
  887.       without giving an explicit path (e.g. you type "ls", rather than
  888.       "/bin/ls") your shell searches each directory in the PATH list in
  889.       order, looking for an executable file by that name, and the shell
  890.       will run the first matching program it finds.
  891.  
  892.       One of the directories in the PATH list can be the current
  893.       directory "." .  It is also permissible to use an empty directory
  894.       name in the PATH list to indicate the current directory.  Both of
  895.       these are equivalent
  896.  
  897.       for csh users:
  898.  
  899.         setenv PATH :/usr/ucb:/bin:/usr/bin
  900.         setenv PATH .:/usr/ucb:/bin:/usr/bin
  901.  
  902.       for sh or ksh users
  903.  
  904.         PATH=:/usr/ucb:/bin:/usr/bin export PATH
  905.         PATH=.:/usr/ucb:/bin:/usr/bin export PATH
  906.  
  907.       Having "." somewhere in the PATH is convenient - you can type
  908.       "a.out" instead of "./a.out" to run programs in the current
  909.       directory.  But there's a catch.
  910.  
  911.       Consider what happens in the case  where "." is the first entry
  912.       in the PATH.  Suppose your current directory is a publically-
  913.       writable one, such as "/tmp".  If there just happens to be a
  914.       program named "/tmp/ls" left there by some other user, and you
  915.       type "ls" (intending, of course, to run the normal "/bin/ls"
  916.       program), your shell will instead run "./ls", the other user's
  917.       program.  Needless to say, the results of running an unknown
  918.       program like this might surprise you.
  919.  
  920.       It's slightly better to have "." at the end of the PATH:
  921.  
  922.         setenv PATH /usr/ucb:/bin:/usr/bin:.
  923.  
  924.       Now if you're in /tmp and you type "ls", the shell will
  925.       search /usr/ucb, /bin and /usr/bin for a program named
  926.       "ls" before it gets around to looking in ".", and there
  927.       is less risk of inadvertently running some other user's
  928.       "ls" program.  This isn't 100% secure though - if you're
  929.       a clumsy typist and some day type "sl -l" instead of "ls -l",
  930.       you run the risk of running "./sl", if there is one.
  931.       Some "clever" programmer could anticipate common typing
  932.       mistakes and leave programs by those names scattered
  933.       throughout public directories.  Beware.
  934.  
  935.       Many seasoned Unix users get by just fine without having
  936.       "." in the PATH at all:
  937.  
  938.         setenv PATH /usr/ucb:/bin:/usr/bin
  939.  
  940.       If you do this, you'll need to type "./program" instead
  941.       of "program" to run programs in the current directory, but
  942.       the increase in security is probably worth it.
  943.  
  944. ------------------------------
  945.  
  946. Subject: How do I ring the terminal bell during a shell script?
  947. From: uwe@mpi-sb.mpg.de (Uwe Waldmann)
  948. Date: Fri, 30 Apr 93 16:33:00 +0200
  949.  
  950. 2.14) How do I ring the terminal bell during a shell script?
  951.  
  952.       The answer depends on your Unix version (or rather on the kind of
  953.       "echo" program that is available on your machine).
  954.  
  955.       A BSD-like "echo" uses the "-n" option for suppressing the final
  956.       newline and does not understand the octal \nnn notation.  Thus
  957.       the command is
  958.  
  959.         echo -n '^G'
  960.  
  961.       where ^G means a _literal_ BEL-character (you can produce this in
  962.       emacs using "Ctrl-Q Ctrl-G" and in vi using "Ctrl-V Ctrl-G").
  963.  
  964.       A SysV-like "echo" understands the \nnn notation and uses \c to
  965.       suppress the final newline, so the answer is:
  966.  
  967.         echo '\007\c'
  968.  
  969. ------------------------------
  970.  
  971. Subject: Why can't I use "talk" to talk with my friend on machine X?
  972. From: tmatimar@isgtec.com (Ted Timar)
  973. Date: Thu Mar 18 17:16:55 EST 1993
  974.  
  975. 2.15) Why can't I use "talk" to talk with my friend on machine X?
  976.  
  977.       Unix has three common "talk" programs, none of which can talk with
  978.       any of the others.  The "old" talk accounts for the first two types.
  979.       This version (often called otalk) did not take "endian" order into
  980.       account when talking to other machines.  As a consequence, the Vax
  981.       version of otalk cannot talk with the Sun version of otalk.
  982.       These versions of talk use port 517.
  983.  
  984.       Around 1987, most vendors (except Sun, who took 6 years longer than
  985.       any of their competitors) standardized on a new talk (often called
  986.       ntalk) which knows about network byte order.  This talk works between
  987.       all machines that have it.  This version of talk uses port 518.
  988.  
  989.       There are now a few talk programs that speak both ntalk and one
  990.       version of otalk.  The most common of these is called "ytalk".
  991.  
  992. ------------------------------
  993.  
  994. Subject: Why does calendar produce the wrong output?
  995. From: tmatimar@isgtec.com (Ted Timar)
  996. Date: Thu Sep  8 09:45:46 EDT 1994
  997.  
  998. 2.16) Why does calendar produce the wrong output?
  999.  
  1000.       Frequently, people find that the output for the Unix calendar
  1001.       program, 'cal' produces output that they do not expect.
  1002.  
  1003.       The calendar for September 1752 is very odd:
  1004.  
  1005.                September 1752
  1006.              S  M Tu  W Th  F  S
  1007.                    1  2 14 15 16
  1008.             17 18 19 20 21 22 23
  1009.             24 25 26 27 28 29 30
  1010.  
  1011.       This is the month in which the US (the entire British Empire actually)
  1012.       switched from the Julian to the Gregorian calendar.
  1013.  
  1014.       The other common problem people have with the calendar program is
  1015.       that they pass it arguments like 'cal 9 94'.  This gives the calendar
  1016.       for September of AD 94, NOT 1994.
  1017.  
  1018. ------------------------------
  1019.  
  1020. End of unix/faq Digest part 2 of 7
  1021. **********************************
  1022.  
  1023. -- 
  1024. Ted Timar - tmatimar@isgtec.com
  1025. ISG Technologies Inc., 6509 Airport Road, Mississauga, Ontario, Canada L4V 1S7
  1026.